home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vbxs / param10.txt < prev    next >
Internet Message Format  |  1996-04-08  |  830b

  1. From:        VisualWare
  2. Date:        Saturday, August 26, 1995 10:03 AM
  3. To:        Visual Basic Examples and Sample Source
  4. Subject:        VisualWare Parameter Custom VBX Control 
  5.  
  6.  A major ommission in Visual Basic is the inability to pass parameters
  7. to forms.  Generally this is handled by using global variables or
  8. assigning values to controls on a form.  Neither is very satisfactory
  9. since you have the problem of synchonization:  How do you load two
  10. forms of the same type at the same time?  
  11.  
  12. In addition you do not get event notification using global 
  13. variables.  In VB programming you want the form to be able to get 
  14. data AND to know when data is available.
  15.  
  16. The VisualWare Parameter control allows you exchange data with
  17. a form and to notify a form of events.  In effect it gives you the 
  18. ability to call a function in a form.